home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLM
- ; This is a COOL script file that allows for COMPLETE control over your
- ; slide show presentation (Business like!). It allows you to go forwards
- ; and backwards through your GIF files in your current directory. This
- ; script shows how to use the MOUSE related commands:
- ; Mouse-Control-On
- ; Mouse-Control-Off
- ; IfButton-L
- ; IfButton-R
- ; IfButton-C
- ; NOTE: If you try to go too far forwards or backwards, the script will
- ; exit. See GIFV.SLN to see how to fix this quirk!
- ;
- mouse-control-on
- change-path *.gif
- loadnext :exit
- :loop
- ifbutton-l :doprev
- Ifbutton-r :donext
- Ifbutton-c :exit
- :doprev
- loadprev :exit
- goto :loop
- :donext
- loadnext :exit
- goto :loop
- :exit